home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_400 / 418_02 / rasmol2 / descrip.mms < prev    next >
Encoding:
Text File  |  1994-03-02  |  1.8 KB  |  51 lines

  1. CC = CC
  2. LINK = LINK
  3.  
  4. !LIBS = sys$share:decw$xlibshr/share
  5. LIBS = 
  6.  
  7. !CFLAGS = /standard=vaxc/debug/noopt
  8. CFLAGS= /optimize/standard=vaxc
  9. LFLAGS = 
  10.        
  11.  
  12. rasmol : rasmol.obj, molecule.obj, transfor.obj, command.obj, abstree.obj, -
  13.          render.obj, x11win.obj, pixutils.obj, outfile.obj
  14.          $(LINK) /exec=rasmol $(LFLAGS) rasmol.obj, molecule.obj, -
  15.                 transfor.obj, command.obj, abstree.obj, render.obj, -
  16.                 x11win.obj, pixutils.obj, outfile.obj, rasmol/opt
  17.  
  18. rasmol.obj :   rasmol.c, rasmol.h, molecule.h, transfor.h, command.h, -
  19.                abstree.h, render.h, graphics.h, pixutils.h, outfile.h
  20.                $(CC) $(CFLAGS) rasmol.c
  21.  
  22. molecule.obj : molecule.c, molecule.h, rasmol.h, abstree.h, transfor.h, -
  23.                render.h
  24.                $(CC) $(CFLAGS) molecule.c
  25.  
  26. transfor.obj : transfor.c, transfor.h, rasmol.h, molecule.h, command.h, -
  27.                render.h, graphics.h
  28.                $(CC) $(CFLAGS) transfor.c
  29.  
  30. command.obj :  command.c, command.h, rasmol.h, tokens.h, abstree.h, -
  31.                molecule.h, transfor.h, render.h, graphics.h, pixutils.h, -
  32.                outfile.h
  33.                $(CC) $(CFLAGS) command.c
  34.  
  35. abstree.obj :  abstree.c, abstree.h, rasmol.h, molecule.h
  36.                $(CC) $(CFLAGS) abstree.c
  37.  
  38. render.obj :   render.c, render.h, rasmol.h, molecule.h, transfor.h, -
  39.                command.h, graphics.h, pixutils.h
  40.                $(CC) $(CFLAGS) render.c
  41.  
  42. x11win.obj :   x11win.c, graphics.h, rasmol.h, bitmaps.h
  43.                $(CC) $(CFLAGS) x11win.c
  44.  
  45. pixutils.obj : pixutils.c, pixutils.h, rasmol.h, render.h, graphics.h
  46.                $(CC) $(CFLAGS) pixutils.c
  47.  
  48. outfile.obj :  outfile.c, outfile.h, rasmol.h, molecule.h, command.h, -
  49.                transfor.h, render.h, graphics.h, pixutils.h
  50.                $(CC) $(CFLAGS) outfile.c
  51.